* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.pageProdact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Swiper styles */
.swiper-container {
    width: 100%;
    height: 500px;
    position: relative;
    margin-bottom: 30px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Add padding to the slides */
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.swiper-button-prev,
.swiper-button-next {
    color: #bdaf84;
    width: 40px;
    height: 40px;
    
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}



/* Product details styles */
#title1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

#description {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

#prix {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
}
.btnKG {
border: 1.2px solid transparent;
}
.active-btn{
  border: 0.7px solid #fff;
color: #ffffff;
background-color: #023047;
}

#sendMessage {
    height: 35px;
    width: 98%;
padding: 2.5px 5px;
border: 0;
border-radius: 100px;
background-color: #008148;
color: #ffffff;
font-weight: Bold;
transition: all 0.5s;
-webkit-transition: all 0.5s;
margin-top: 15px;
} 
#sendMessage i {
  margin-left: 5px;
}
#addToCart ,#sendCart{
    height: 35px;
    width: 98%;
padding: 2.5px 5px;
border: 0;
border-radius: 100px;
background-color: #fb8500;
color: #ffffff;
font-weight: Bold;
transition: all 0.5s;
-webkit-transition: all 0.5s;
margin-top: 15px;
}
#addToCart i {
    margin-left: 5px;
}

#title1 ,#description ,#prix ,#ifcatigouri {
    border-top: 1px solid #023047;
    padding: auto;
    }
    


/* Responsive styles */
@media (max-width: 768px) {
  .swiper-container {
    width:100%;
    height: 500px;
 
    margin-bottom: 30px;
}

    .swiper-container {
        height: 400px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    #title1 {
        font-size: 24px;
    }

    #description {
        font-size: 16px;
    }

    #prix {
        font-size: 20px;
    }
    
}

/* quantity prodact */
.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    width: 120px;
  }

  .quantity-input button {
    background-color: #f2f2f2;
    border: none;
    color: #333;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0 5px;
    cursor: pointer;
  }

  .quantity-input input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 16px;
  }     
  


  
  